home *** CD-ROM | disk | FTP | other *** search
- /* p876.c --- bible */
- #include <conio.h>
- char text[] = " Testing delline. Press any key to go on.";
- main()
- {
- int i, nlines = 11;
- window(20, 10, 60, 10 + nlines - 1);
- textbackground(RED);
- clrscr();
- getch();
- textcolor(YELLOW);
- for(i = 1; i <= nlines; i++)
- {
- gotoxy(1, i);
- (*text)++;
- cputs(text);
- }
- getch();
- gotoxy(1, nlines / 2);
- for(i = 0; i < nlines / 2; i++)
- {
- getch();
- delline();
- }
- }